home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap11 / howto03 / cciwcc22.dpr < prev    next >
Encoding:
Text File  |  1996-06-12  |  509 b   |  20 lines

  1. program cciwcc22;
  2.  
  3. uses
  4.   Forms,
  5.   Cciccfrm in 'CCICCFRM.PAS' {CCINetCCForm},
  6.   Cciccinf in 'CCICCINF.PAS' {CCICInfoDlg},
  7.   Cciccprf in 'CCICCPRF.PAS' {CCICPrefsDlg},
  8.   Cciccpop in 'CCICCPOP.PAS',
  9.   Ccicnntp in 'CCICNNTP.PAS';
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Title := 'CC InterNet Web Command Center';
  15.   Application.CreateForm(TCCINetCCForm, CCINetCCForm);
  16.   Application.CreateForm(TCCICInfoDlg, CCICInfoDlg);
  17.   Application.CreateForm(TCCICPrefsDlg, CCICPrefsDlg);
  18.   Application.Run;
  19. end.
  20.